home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / wstr.exe / FATAL.C < prev    next >
Text File  |  1993-02-24  |  255b  |  13 lines

  1. #include <WStr.h>
  2. #include <stdio.h>
  3. #include <stdlib.h>
  4.  
  5. //  what goes in here will change from application to application
  6.  
  7. void FatalError(const char* Str)
  8.   {
  9.     puts("\nFatal Error Encountered:  \""+String(Str)+"\"");
  10.     exit(-1);
  11.   }
  12.  
  13.